Welcome![Sign In][Sign Up]
Location:
Search - library delphi

Search list

[Delphi VCLSQLDirect.v4.2.8

Description: SQLDirect Component Library is a light-weight Borland Database Engine replacement for Borland Delphi v.4 - 9(2005) and C++Builder v.4 - 6. It uses the native application programming interfaces to access to the following SQL-servers: * Centura (formerly, Gupta) SQLBase Server * IBM DB2 Universal Database * Informix Server * Interbase/Firebird Server * Microsoft SQL Server * MySQL Server * Oracle Database Server * PostgreSQL Server * Sybase Adaptive Server Enterprise and Adaptive Server Anywhere * ODBC datasources * OLEDB datasources-SQLDirect Component Library is a light-weight Borland Database Engine replacement for Borland Delphi v.4- 9(2005) and C++Builder v.4- 6. It uses the native application programming interfaces to access to the following SQL-servers:* Centura (formerly, Gupta) SQLBase Server* IBM DB2 Universal Database* Informix Server* Interbase/Firebird Server* Microsoft SQL Server* MySQL Server* Oracle Database Server* PostgreSQL Server* Sybase Adaptive Server Enterprise and Adaptive Server An
Platform: | Size: 9024512 | Author: akay | Hits:

[Delphi VCLDNotes VCL v1.19 访问lotus

Description: DNotes For Delphi/C++Builder is a suite of VCL Components and a Class Library for accessing Lotus Notes 4.x databases & servers.
Platform: | Size: 1466368 | Author: akay | Hits:

[P2PBitZam_FTKernelAPI

Description: 免费内核推出, BT软件开发不再高深. 只要你愿意, 你可以在3天的时间里开发出满足你自己需要的BT下载软件. 假如你正在想自己开发一个BT下载软件或者你正在为你的公司的程序寻找一种省钱省时的下载解决方案, FTKernelAPI将是你的理想选择... FTKernelAPI 是什么? FTKernelAPI 是基于标准的BitTorrent协议开发网络内核库. 作者开发的BT下载软件FlashBT(变态快车) 就是使用的 本内核库. FTKernelAPI 是使用C++开发, 以标准 C API 接口的方式提供. 所以FTKernelAPI 不但可以应用于C++开发 的程序中, 同样可以应用于VB/Delphi/C++ Builder 的语言开发的程序中. 目前FTKernelAPI 已经被某些公司成功的应 用于他们的商业程序中, 包括C++和Delhpi开发的程序. FTKernelAPI 如何使用? 有什么例子可以参照吗? 为了便于大家使用, 作者提供了一个使用FTKernelAPI 开发的开放源码的BT下载程序 - BitZam. 关于使用FTKernelAPI, 你可以下载BitZam的C++源码看看. 使用起来非常简单. 你可以在BitZam的基础上在很短的时间内开发出通用的BitTorrent下载程序或者自己专用的禁止其他人的BitTorrent软件下载的程序. 你不必再关心BitTorrent协议的细节, 这些都已经被封装在了内核库中.-free-core launch, BT is no longer advanced software development. If you wish, you can three days of time to develop to meet your own needs BT to download software. If you are thinking about their development of a BT download software or you are for your company's procedures to find a cost-effective and time under the contains solution FTKernelAPI will be your ideal choice ... what is FTKernelAPI FTKernelAPI is standards-based BitTorrent agreement for the development of network core. the authors developed software download BT FlashBT (abnormal Express), which is used in the core library. FTKernelAPI development is the use of C, C API to access standard I can provide. So not only can be used FTKernelAPI C development process, the same can be applied to VB/Delphi/C Builder language de
Platform: | Size: 440320 | Author: 来来 | Hits:

[Other systems音像店管理程序

Description: 一个音像租赁店铺的管理软件,可以维护影片库信息和会员信息,及日常业务的实现(出租/归还).这是我学delphi整一个月的纪念品,有些简单,不过我还是希望和大家分享一下我的成长历程.-an audio-video rental shop management software can protect film library of information and member information, and day-to-day operations to achieve (rental/return). This is my school delphi entire month of souvenirs, some simple, but I still wish to share my upbringing.
Platform: | Size: 108544 | Author: 乔清波 | Hits:

[AI-NN-PR关于tts语音引擎的使用方法

Description: 关于tts语音引擎的使用方法!很多软件具有英文发音和朗读功能,它们都使用了MSTTS(Microsoft Text To Speech)技术。微软遵照COM的标准,提供了一套Speech API来对MSTTS进行编程。要在程序中使用这套API,必须确保系统已经安装了MSTTS和Spchapi软件包。   Speech API可以作为类型库引用到Delphi中,方法是:打开Project选单下的Import Type Litrary,点击“Add”加入Windows\Speech目录下的Vtxauto.tlb文件,在Delphi的Import目录中就会生成VTxtAuto—TLB.pas文件,其中定义了VTxtAuto—TLB单元,把它加到Uses成员中来。设计如图2所示的窗口,定义全局变量: var VoTxt:IVTxtAuto   然后在Form的OnCreate事件中加入:   VoTxt:=CoVTxtAuto_.Create   VoTxt.Register(′′,′Speech Test′) {注册}   “Read”按钮代码为:   VoTxt.Speak(Memo1.Lines.Text,10) {朗读}   “Stop”按钮代码为:   VoTxt.StopSpeaking {停止朗读}   至此,应用程序已具有朗读功能,10表示使用普通语气。借住VoTxt的属性和方法,我们还可以控制阅读速度和语气,实现暂停、跳句等功能,Speech API编程就这么简单。 -TTS voice on the use of the engine! Many software with English pronunciation and reading aloud function, they have used MSTTS (Microsoft Text To Speech) technology. Microsoft COM comply with the standards and provide a set of Speech API to right MSTTS program. The procedure to use this API, we must ensure that the system has been installed and Spchapi MSTTS package. Speech API can be used as a type library to Delphi, is : Open Project menu under the Import Type Litrary, click on the "Add" to join Windows \ directory under the Speech Vtxauto.tlb documents in the Delphi Import directory will generate VTxtAuto- TLB.pas document, which will just a VTxtAuto- TLB units, it added Uses members to China. Figure 2 shows the design of windows, the definition of global variables : var VoTx
Platform: | Size: 7168 | Author: 章称 | Hits:

[Communication内存映像(动态库间)

Description: 动态库之间的内存共享(在动态库和主程序之间以及在动态库和动态库之间共享内存)-DLL between memory sharing (DLL and the main program and the dynamic between the library and DLL between shared memory)
Platform: | Size: 49152 | Author: 李天顺 | Hits:

[Menu controlplugin插件程序

Description: 用BCB写的一个调用DELPHI动态库的插件程序. 目标是将DELPHI动态库中的菜单读取. 并将当前目录下的动态库中的菜单连续加入. 从而形成插件程序,界面简陋.只用于学习,如有好的建议请与我联系,一起研究.-with BCB write a DLL called Delphi plug-in procedures. The goal is to DELPHI dynamic library to read the menu. Under the current directory will be dynamic repository for accession to the menu. Thus plug-in procedures, simple interface. Only for learning, if good suggestions, please contact me, together .
Platform: | Size: 1311744 | Author: 耿海瑞 | Hits:

[Other Databasesfastreport演示程序

Description: fastreport演示程序。fastreport是vcl库的下的一个报表三方控件,写的比delphi自带的报表系统好的多。(DELPHI中有bug)可以下载-FastReport demonstration program. FastReport VCL library is under a tripartite statement Control and writing than delphi's own statements over a good system. (Delphi is bug) can be downloaded to s
Platform: | Size: 781312 | Author: 孙永锐 | Hits:

[ADO-ODBC案例9

Description:   实现图书馆管理系统的delphi原代码,用sql数据库保存和管理数据,-Library Management System delphi original code used sql database to store and manage data.
Platform: | Size: 562176 | Author: 小强强 | Hits:

[Applications图书馆管理系统分析案例

Description: 图书馆管理系统,分析数据关系内容,方便大家做程序,提供参考.竭诚欢迎大家提供意见!-library management system to analyze data, relationships, we do to facilitate procedures for reference. We wholeheartedly welcome the advice!
Platform: | Size: 27648 | Author: 陈静波 | Hits:

[Button controlyimanwk_BusinessSkinForm_V3.95_FS_HH

Description: 非常好的界面套件. BusinessSkinForm is an VCL library that allows you to dynamically change almost any aspect of the visual appearance your project s forms and controls. It provides you with full support for application skins.-very good interface kit. BusinessSkinForm is an VCL library that allows you to dynamically change almost any aspect of the visual appearance your project s forms and controls. It provides you with full support for application skins.
Platform: | Size: 590848 | Author: 雷震 | Hits:

[Shop supermarket software system图书影碟租赁管理系统

Description: 图书影碟租赁管理系统,附全部源码和数据库文件,详细设计文档。曾因此软件得过软件工程实习优秀。-DVD rental library management system, with all source code and database files, detailed design documents. So software has won outstanding software engineering internship.
Platform: | Size: 916480 | Author: 吴琼 | Hits:

[Other Databasesdephi数据库课程设计

Description: 数据库课程设计,是一个图书馆管理系统,用dephi语言和paradox数据库实现-database design courses, a library management system, dephi use language and paradox database
Platform: | Size: 897024 | Author: 谢博杰 | Hits:

[OS programtuxitong

Description: 有关读者种类标准制定以及信息输入、删除。读者基本信息输入、查询、修改、删除。书籍类别标准制定以及类别信息输入、查询、修改、删除。图书信息的输入、查询、修改、删除。借书信息输入、查询、修改。还书信息输入、查询、修改。 系统用户权限管理。-readers of the types of standards and information input, delete. Readers basic information input, inquiries, modification, deletion. Books categories of standards development and the type of information input, inquiries, modification, deletion. Library information input, inquiries, modification, deletion. Library information input, inquiries, and change. Book information input, inquiries, and change. Users of the system management competence.
Platform: | Size: 778240 | Author: 乐乐 | Hits:

[GUI Developfastlib

Description: delphi图形库,支持各种格式的图片操作-graphics library, support of image formats operation
Platform: | Size: 738304 | Author: 阿訇大 | Hits:

[Button controlwinskin

Description: Delphi VclSkin 2.60 VCLSkin is an VCL library that extend Delphi application with skinnable user interface . Unlike other skin component that you must modify source code to build skinnable application, VCLskin can skin existing application using VCL components without source code modification. VclSkin automatically skin kinds of windows in application, include Delphi forms,MDIform and common Windows dialogs (MsgBox,Open/Save,Font,Print), even the Exception MsgBox. Vclskin not only support Delphi standard controls, but also support many third-party component, such as TMS Grid pack, EnLib Grid, Developer Express QuantumGrid. It is an excellent choice for those wanting to skin existing applications. The cool thing is that it uses existing VCL components. Demo version adds a string VclSkin demo on form caption, but allows to test all available functions.-Delphi VclSkin 2.60 VCLSkin is an VCL libra ry that extend Delphi application with skinnab le user interface. Unlike other skin component that you must modify source code to build skinna ble application, VCLskin can skin existing application using VC L components without source code modification . VclSkin automatically skin kinds of windows i n application, include Delphi forms, MDIform and common Windows dialogs (MsgBox. Open/Save, Font, Print) even the Exception MsgBox. Vclskin not only sup port Delphi standard controls, but also support many third-party component, TMS such as Grid pack, EnLib Grid, Developer Express QuantumGrid. It is an excel ent choice for those wanting to skin existing ap plications. The cool thing is that it uses exist ing VCL components. Demo version adds a strin
Platform: | Size: 5241856 | Author: 史旭龙 | Hits:

[Education soft systemwushixiang

Description: 比较好的图书管理系统delphi源代码 简单易理解 -better library management system delphi source code simple and easy to understand
Platform: | Size: 673792 | Author: 吴事项 | Hits:

[Multimedia DevelopAudioObjectAndPlugIn

Description: BASS 庫是目前世界上最好的音頻解碼器之一,世界上有無數的音頻開發的愛好者都在用它開發自己喜歡的音頻播放器,BASS 庫在個人使用是完全免費的. Audio Object 就是利用 BASS 庫開發的一套音頻播放系統.最重要的是它完全開發源代碼! 它可以播放的音頻文件有 MP3/MOD/WMA/CDA 等流行的音頻格式,通過插件的形式,你更可以將它擴展可以播放 DIVX 的 AVI 電影.上傳的壓縮包裡面包含了: 1.主程序的源代碼 2.已經可以作為免費軟件使用的安裝程序 3.Audio Object的 NSIS 的安裝腳本 4.其他有關的 Skin 類的演示 5.插件(PlugIn)的接口源源代碼 6.如何劃波形頻譜的顯示 ********** 1.這套音頻播放器的源代碼沒有使用任何三方控件,你隻要解壓縮後,設置 OutPut 路徑指向到 Debug 目錄,就可以使用了. 2.裡面的 WinUX DEMO是要使用 TMS 的 TMS Skin Factory 的皮膚,請去 TMS 下載相應的版本安裝才能編譯! ********** ....更多功能,等待你的發掘與開發!因為它是開源的! 如果可以的話,以後我將繼續上傳 BASS 庫的應用程序. 使用 Audio Object 這套軟件,請遵循 GPL/GNU 的協議進行, BASS 庫的使用也請遵循此協議進行使用!-BASS Library is the world's best audio decoder one of the world have developed numerous audio enthusiasts are using it to develop their own favorite audio player, BASS for the personal use is completely free of charge. Audio Object is used for the development of the BASS set audio playback systems. The most important it is completely open source code! it can play the audio files are MP3/MOD/WMA/CDA popular audio format, through the plug-in, you can expand it can play DIVX AVI movie. Upload compressed inside includes : 1. the main program source code 2. as has been the use of free software installation procedures 3.Audio Object Supported the installation of four scripts. the other kind of demonstration Skin 5. plug-in (PlugIn) interface code stream 6. how is zoned spectrum waveform disp
Platform: | Size: 4936704 | Author: 哈哈 | Hits:

[Com Portpcommlt-demo

Description: 利用moxa提供的功能强大的动态连接库,完成各种串口协议的通讯和传输文件(zmod ,xmod等协议),内付c,vb,delphi的demo程序-use MOXA provide a powerful dynamic link library, completed various agreements serial communication and file transfer (zmod, xmod other agreements), which pay c, vb, the demo process delphi
Platform: | Size: 1404928 | Author: 222 | Hits:

[Education soft systemtushuguanguanlixotong

Description: 图书馆管理系统。使用Delphi编写,使Delphi与数据库的结合,有助大家学习数据库和Delphi语言。-library management system. The use of Delphi, Delphi and the integration of database, the database would help us to learn and Delphi.
Platform: | Size: 425984 | Author: 奇峰 | Hits:
« 1 2 3 4 5 67 8 9 10 11 ... 50 »

CodeBus www.codebus.net